home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / univspl / audiomai.h < prev    next >
C/C++ Source or Header  |  1999-01-29  |  2KB  |  50 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef audiomain_bcbxH
  3. #define audiomain_bcbxH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Buttons.hpp>
  10. #include <vcl\Dialogs.hpp>
  11. #include <vcl\MPlayer.hpp>
  12. #include "audioc.h"
  13. //---------------------------------------------------------------------------
  14. class TGUIForm : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TSpeedButton *SpeedButton1;
  18.     TLabel *Label1;
  19.     TOpenDialog *OpenDialog;
  20.     TSaveDialog *SaveDialog;
  21.     TLabel *Label2;
  22.     TSpeedButton *SpeedButton2;
  23.     TLabel *Label3;
  24.     TLabel *Label4;
  25.     TButton *ProcessBtn;
  26.     TButton *SaveBtn;
  27.     TButton *QuitBtn;
  28.     TEdit *InFileEdit;
  29.     TEdit *OutFileEdit;
  30.     TEdit *RevDelEdit;
  31.     TEdit *RevAmpEdit;
  32.     void __fastcall SpeedButton1Click(TObject *Sender);
  33.     void __fastcall ProcessBtnClick(TObject *Sender);
  34.     void __fastcall SpeedButton2Click(TObject *Sender);
  35.     void __fastcall QuitBtnClick(TObject *Sender);
  36.     void __fastcall SaveBtnClick(TObject *Sender);
  37.     void __fastcall FormDestroy(TObject *Sender);
  38.     
  39. private:    // User declarations
  40.     bool AudioInUse;
  41.     AudioC *Wav;
  42.     AudioC *newwave;
  43. public:        // User declarations
  44.     __fastcall TGUIForm(TComponent* Owner);
  45. };
  46. //---------------------------------------------------------------------------
  47. extern TGUIForm *GUIForm;
  48. //---------------------------------------------------------------------------
  49. #endif
  50.